Fix a case a height/width confusion
authorMatthias Clasen <mclasen@redhat.com>
Sat, 19 Dec 2015 16:11:34 +0000 (11:11 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 19 Dec 2015 16:24:27 +0000 (11:24 -0500)
gtk/gtkexpander.c

index 4b02ee82395b90d53fcb7790d5840518de32a811..fdeb634107f5040ad7e6c8e42391c15f2a6f315e 100644 (file)
@@ -1505,7 +1505,7 @@ gtk_expander_measure_title (GtkCssGadget   *gadget,
         label_min = label_nat = 0;
 
       *minimum = arrow_width + label_min;
-      *natural = arrow_height + label_nat;
+      *natural = arrow_width + label_nat;
     }
   else
     {